home *** CD-ROM | disk | FTP | other *** search
/ Disc to the Future 2 / Disc to the Future Part II Programmer's Reference (Wayzata Technology)(6013)(1992).bin / MAC / THINKC / TCL1 / CEDITOR_ / EDITORED.C < prev    next >
C/C++ Source or Header  |  1992-01-12  |  234b  |  16 lines

  1. /*****
  2.  * EditorEdit.c
  3.  *
  4.  *****/
  5. #include "CEditorApp.h"
  6.  
  7. extern    CApplication    *gApplication;
  8.  
  9. void main()
  10. {
  11.     gApplication = new(CEditorApp);
  12.     ((CEditorApp *)gApplication)->IEditorApp();
  13.     gApplication->Run();
  14.     gApplication->Exit();
  15. }
  16.